/* General Styles */
section {
  padding: 4rem 0;
  font-family: sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Credits Banner */
.credits-banner {
  background-color: #43da87; /* Prada’s blue background */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px; /* desktop height */
  text-align: center;
  padding: 20px;
}

/* Text Styling */
.credits-content p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 8px;
}

.credits-content h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .credits-banner {
    height: 220px;
  }

  .credits-content h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .credits-banner {
    height: 180px;
  }

  .credits-content p {
    font-size: 12px;
  }

  .credits-content h2 {
    font-size: 20px;
  }
}

/* Credits Section */
.credits-section {
  background: #fff;
  padding: 6rem 2rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #111;
}

.credits-container {
  max-width: 900px;
  margin: 0 auto;
}

.credits-title {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 1px;
}

.credits-intro {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  text-align: center;
  margin-bottom: 3rem;
}

.credits-block {
  margin-bottom: 2.5rem;
}

.credits-block h2 {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #111;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
}

.credits-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.credits-block ul li {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: #444;
}

.credits-block a {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  transition: 0.3s ease;
}

.credits-block a:hover {
  color: #666;
  border-color: #666;
}

.credits-block p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .credits-title {
    font-size: 1.6rem;
  }
  .credits-block h2 {
    font-size: 1.1rem;
  }
}
